feat, refactor: Caffeine Cache 적용 (redis -> caffeine)#91
Merged
Conversation
myqewr
approved these changes
Apr 10, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🌱 관련 이슈
📌 작업 내용 및 특이사항
Redis로 캐시를 관리하던 방법에서 로컬 캐시Caffeine로 캐시를 관리하는 방법으로 변경했습니다Redis를 캐싱 전략으로 사용하면 분산 캐시로써 여러 서버 인스턴스 간에 데이터를 공유할 수 있고, 서버가 수평 확장되거나 다중 인스턴스 환경에서 동일한 캐시 데이터를 사용할 수 있도록 하여 데이터 일관성을 보장하고, 중앙 집중식 캐시 관리가 가능하다는 이점이 있지만, Redis는 네트워크를 통해 접근하기 때문에 로컬 메모리 기반 캐시보다 상대적으로 응답 속도가 느리고, Redis 서버 자체의 운영과 유지 관리가 필요하다는 단점이 존재합니다🔍 참고사항
📚 기타